ini_read_string


描述

你可以使用此函数从 ini 数据文件中读取字符串(文本)。Ini 文件由 节(sections) 组成,然后每个节由 - 对(key - value pairs)组成。所以典型的 ini 文件看起来像这样:


语法:

ini_read_string(section, key, default);


参数 描述
section 要读取值的键所在的 .ini 节。
key 要读取值的键。
default 如果在定义的位置找不到字符串(或 .ini 文件不存在),则返回的默认字符串。必须是一个字符串。


返回:

String(字符串)


例如:

ini_open("savedata.ini");
global.name = ini_read_string("player", "name', "Player1");
ini_close();

This will open "savedata.ini" and set global.name to the string under "save1" > "Name" in it, then close the .ini again. Should there be no string under "save1" > "Name", or there no "savedata.ini" file present, global.name will be set to "Player1".